home *** CD-ROM | disk | FTP | other *** search
/ Corbis Images Sampler - Red / RED.iso / pc / Interface / inter.dxr / 00091_dotvr behavior.ls < prev    next >
Encoding:
Text File  |  1999-12-21  |  1.2 KB  |  38 lines

  1. global oldText
  2.  
  3. on mouseEnter me
  4.   puppetSound(3, "over")
  5.   sprite(71).visible = 1
  6.   member("blurb").text = "Picture yourself on the floor of the Grand Canyon. Or at the center of a Paris runway show. CorbisΓÇÖ collection of 360-degree panoramic photographs gives your audience the feeling of ΓÇ£being there.ΓÇ¥ These remarkable continuous photographs are often used for trade shows, museum installations and retail displays. They are also perfect for internet and new media applications, since the images can be easily rotated by viewers, placing them at the emotional heart of a scene."
  7.   sprite(9).visible = 0
  8.   sprite(21).visible = 0
  9.   sprite(22).visible = 0
  10.   sprite(23).visible = 0
  11.   sprite(24).visible = 0
  12.   sprite(25).visible = 0
  13.   sprite(26).visible = 1
  14.   sprite(27).visible = 0
  15.   sprite(28).visible = 0
  16.   sprite(29).visible = 0
  17.   sprite(30).visible = 0
  18.   sprite(31).visible = 0
  19.   sprite(32).visible = 0
  20.   sprite(33).visible = 1
  21.   sprite(34).visible = 0
  22.   sprite(35).visible = 0
  23. end
  24.  
  25. on mouseLeave me
  26.   member("blurb").text = oldText
  27.   sprite(26).visible = 0
  28.   sprite(33).visible = 0
  29. end
  30.  
  31. on mouseUp me
  32.   puppetSound(2, "click")
  33.   oldText = member("blurb").text
  34.   preloadMember("ax018974")
  35.   sprite(33).visible = 0
  36.   go("360")
  37. end
  38.